home *** CD-ROM | disk | FTP | other *** search
/ Aminet 19 / Aminet 19 (1997)(GTI - Schatztruhe)[!][Jun 1997].iso / Aminet / comm / cnet / cnet_toolkit.lha / CNet_ToolKit.INTRO < prev    next >
Text File  |  1997-04-05  |  6KB  |  107 lines

  1. ****************************************************************************
  2.       CNet Amiga Tool Kit, v3.00 compiled by Dotoran of Frontiers BBS!
  3.  
  4.         A Collection of Useful ARexx & MCI SubRoutines & Procedures!
  5.  
  6.          Please use ANY of these in your OWN ARexx/Text Creations!
  7.  
  8.             $VER: CNet Tool Kit, v3.00 (5-Apr-97) by Dotoran!
  9. ****************************************************************************
  10.  
  11. GENERAL INTRODUCTION
  12. ~~~~~~~~~~~~~~~~~~~~
  13.     These routines have all been tested thoroughly under CNet Amiga, v4.26b!
  14. The routines should also function correctly under v3.05c, unless specifically
  15. stated otherwise. I encourage all 3.05c SysOps to UPGRADE to v4.xx as soon
  16. as possible! It's unbelievable what this thing can do! ;-)
  17.  
  18.     Full descriptions of the Usage and Returned Values are given for each
  19. routine, which will hopefully make you 100% aware as to EXACTLY how to USE
  20. each routine.
  21.  
  22.     Some of the routines state they need to use the "rexxsupport.library"
  23. for their operations. I've found that all you really need to do to insure
  24. that this library is in place is to include this line somewhere near the
  25. beginning of your program:
  26.  
  27. a="rexxsupport.library";if ~show("l",a) then if ~addlib(a,0,-30) then exit
  28.  
  29.     The above command line will check to make sure the needed library EXISTS,
  30. and will add it to the list of available libraries. If the library does NOT
  31. exist in your LIBS: directory(or within your valid PATH assignment), then
  32. your program will terminate. (See the ADDLIB() routine if you wish to be
  33. given an error message in this event).
  34.  
  35.     All the routines included in this file were written so that they could
  36. simply be copied(or pasted) into the included "NewDoor" file. Please check
  37. routine [42] in the REXX kit for more information on this "NewDoor" file.
  38.  
  39.     It should be noted, however, that none of the actual routines included
  40. in the ToolKit use command aliases or abbreviations, like tr, se, gc, etc.
  41. This was done just in case YOUR program uses some different abbreviations 
  42. or none at all.
  43.  
  44.     I've also included an ARexx version of the RUN command, which you can 
  45. use to test out your ARexx creations, without having to manually add(or 
  46. adopt) them into the system.
  47.  
  48. THANK YOU'S & OTHER ACKNOWLEDGEMENTS
  49. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  50.     I'd like to take this space to thank a few people for their efforts on
  51. making the newest version of the ToolKit possible:
  52.  
  53. PMK, alias Peter M. Klein. Once again, it would have been near impossible
  54.     for me to complete this project if it weren't for the help of Pete. In
  55.     fact, most of the routines in BOTH ToolKits are written by Peter himself.
  56.     He has truly been a helpful guide and an inspiration to me in the 2 years
  57.     that I've known him. I wish the span of space between us(me in New York,
  58.     USA and he in Copenhagen, Denmark) was not so great, as I would sure like
  59.     to shake this man's hand! You all may have heard that PMK is no longer
  60.     with us in the Amiga Community. He is one of MANY who will be VERY sorely
  61.     missed! I wish Peter all the best in his future endeavors. ;-)
  62.  
  63. ALL CONTRIBUTORS to the ToolKits: Aunt Bea, Thomas, Bill Beogelein, Lord of
  64.     Flies, and mUB. Some of the BEST new additions to the ToolKits were made
  65.     by these individuals! Thanks for sharing guys!
  66.  
  67. BILL BEOGELEIN, alias Bill Allen. Although I came nowhere NEAR tapping the
  68.     reserves this man had concerning CNet, I did use some of his routines I
  69.     thought REALLY made a difference.
  70.  
  71. AUNT BEA, alias Henry "Hank" Priebe. Here's another guy I was able to tap
  72.     into for some great ideas. I wish we could pull him back to Earth long
  73.     enough for him to release some of his larger works, as he really DOES
  74.     have some good stuff out there that's WORTH sharing! HINT! HINT!
  75.  
  76. mUB & THOMAS, two of PMK's connections. Each of these contributers wrote mods
  77.     that I use constantly, like the Mail Header. I'm sure PMK would also like 
  78.     to Thank these two guys as well! Keep up the good work guys!
  79.  
  80. LORD OF FLIES, who was the original author of the 2-column layout for use in
  81.     the G/P/News areas. I believe it was this routine we were asked about the
  82.     MOST! Either by people asking me out of the blue if it were possible(if
  83.     they happened to see me on Internet IRC) or if they saw the mod in use
  84.     on MY board, then it was more like, "Hey Dotoran! Way Cool! How'd you
  85.     get the 2 columns in your DOORS?!?" Again, thanks LF for a GREAT mod!
  86.  
  87. ANYONE ELSE I MAY HAVE FORGOTTEN. I'm sure there may have been one or two
  88.     people I may have forgotten, or a few that Peter might have wanted to
  89.     Thank, but was unable to as this portion was written right before the
  90.     release date, so let me take this last second to thank ANYONE ELSE that
  91.     may have had an impact on the completion of this project. PLEASE LET ME
  92.     KNOW I FORGOT YOU, so you can be OFFICIALLY ACKNOWLEDGED in the next
  93.     version I release!
  94.  
  95. WHAT ELSE DO WE NEED? / WHAT CAN YOU DO?
  96. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  97.     If you have a routine that you have found to be quite useful in many of
  98. the files that you've written, then please send us a copy. We'll look at it,
  99. optimize it(if possible), and include it in the next version of the ToolKit!
  100. Of course, we'll give YOU credit for coming up with the idea too!
  101.  
  102.     Alright, enough talk!  It's the ROUTINES you're interested in if you're
  103. reading this file right now, so I won't hold you up any longer! Hehe
  104.  
  105.                                                            - Dotoran (Dave)
  106. ****************************************************************************
  107.